OrderNPayWebsocketResponse`1 Model

Required MaxLength(256)
requestID : string

A unique identifier for the request that this response relates to.

Required
resultCode : OrderNPayResultCode

The result code for the requested operation

Required
messageType : OrderNPayMessageType

The type of message this response represents

Nullable MaxLength(512)
errorMessage : string

An error message relating to the result code (if applicable)

Nullable
payload : object

The response payload of the websocket message (the payload structure will vary depending on the MessageType)

Example
{
  "requestID": "string value",
  "resultCode": 1,
  "messageType": 1,
  "errorMessage": "string value",
  "payload": {}
}